home *** CD-ROM | disk | FTP | other *** search
/ FM Towns: Free Software Collection 6 / FM Towns Free Software Collection 6.iso / ms_dos / gds / source / gds001.c next >
Encoding:
C/C++ Source or Header  |  1993-07-08  |  206 b   |  11 lines

  1.  
  2. #include <stdio.h>
  3.  
  4. unsigned char *GDS_append(unsigned char *wp,unsigned int size) {
  5.    unsigned int byte;
  6.  
  7.    byte=*(unsigned int *)wp;
  8.    *(unsigned int *)wp=byte+size;
  9.    return wp+2+byte;
  10. }
  11.